* lisp/emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
authorGlenn Morris <rgm@gnu.org>
Tue, 6 Nov 2012 01:36:44 +0000 (20:36 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 6 Nov 2012 01:36:44 +0000 (20:36 -0500)
lisp/ChangeLog
lisp/emacs-lisp/gv.el

index 6187b0ae705d4817e772697a3a5338a28306f42a..7071223071e62bae7ca73156fcf4789633f670a8 100644 (file)
@@ -1,3 +1,7 @@
+2012-11-06  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/gv.el (gv-define-setter): Fix doc typo.
+
 2012-11-05  Glenn Morris  <rgm@gnu.org>
 
        * emacs-lisp/cl-extra.el (cl-prettyexpand):
index d6c91539a90423aefc9dbbe25564743df22233d4..3dd021f9e74a83a63f4e6fdeee318011d043d0a4 100644 (file)
@@ -194,7 +194,7 @@ well for simple place forms.
 Assignments of VAL to (NAME ARGS...) are expanded by binding the argument
 forms (VAL ARGS...) according to ARGLIST, then executing BODY, which must
 return a Lisp form that does the assignment.
-The first arg in ARLIST (the one that receives VAL) receives an expression
+The first arg in ARGLIST (the one that receives VAL) receives an expression
 which can do arbitrary things, whereas the other arguments are all guaranteed
 to be pure and copyable.  Example use:
   (gv-define-setter aref (v a i) `(aset ,a ,i ,v))"